home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / nasm095.zip / RDOFF / RDLIB.H < prev    next >
C/C++ Source or Header  |  1997-07-27  |  478b  |  19 lines

  1. /* rdlib.h    Functions for manipulating librarys of RDOFF object files */
  2.  
  3.  
  4. struct librarynode {
  5.     char    * name;
  6.     FILE    * fp;        /* initialised to NULL - always check*/
  7.     int        referenced;    /* & open if required. Close afterwards */
  8.     struct librarynode * next;  /* if ! referenced. */
  9. };
  10.  
  11.  
  12. extern int rdl_error;
  13.  
  14. int rdl_searchlib (struct librarynode * lib,
  15.            const char * label, rdffile * f);
  16. void rdl_perror(const char *apname, const char *filename);
  17.  
  18.  
  19.